home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Logiciels PC Special 3
/
Logiciel PC - Hors-Serie 3.iso
/
Logs
/
micros
/
ql
/
outils
/
qltoolsq
/
source
/
docs
/
qlverify
< prev
next >
Wrap
Text File
|
1995-12-03
|
310b
|
17 lines
#!/usr/bin/perl
# Perl script to copy all files from a QL DD disk under Linux
# _ in QDOS file names are changed to .
print "$ARGV[0]\n";
open (QL, "qltools $ARGV[0] -s |");
while (<QL>)
{
print;
chomp;
$unx = $_;
$unx =~ s/_/\./g;
system "qltools $ARGV[0] $_ >/dev/nul\n";
}
close (QL);